home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
libmat.lha
/
src
/
mconst6.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
169b
|
14 lines
// MATRIX LIB
// TOMMY JOHANSSON 1995
#include "matrix.h"
Matrix::Matrix()
{
#ifdef DEBUG
printf("Initierar en tom matris\n");
#endif
koff=NULL;
n=0;
m=0;
}